comma-separated values - meaning and definition. What is comma-separated values
Diclib.com
ChatGPT AI Dictionary
Enter a word or phrase in any language 👆
Language:

Translation and analysis of words by ChatGPT artificial intelligence

On this page you can get a detailed analysis of a word or phrase, produced by the best artificial intelligence technology to date:

  • how the word is used
  • frequency of use
  • it is used more often in oral or written speech
  • word translation options
  • usage examples (several phrases with translation)
  • etymology

What (who) is comma-separated values - definition

FILE FORMAT USED TO STORE DATA
.csv; Comma delimited; Comma separated values; Comma Separated Values; Comma-Separated Values; Comma separated lists; Comma-separated list; Comma seperated values; Comma separated list; Comma-seperated values; Comma-separated value; CSV (file format); CSV file; CSV-1203; Comma Separated Value; Comma separated value; COMMA-SEPARATED VALUES; Csv-schema; Comma delimited format; Text/csv; Csv file; Csv files; CSV data

comma separated values         
<file format> (CSV) A file format used as a portable representation of a database. Each line is one entry or record and the fields in a record are separated by commas. Commas may be followed by arbitrary space and/or tab characters which are ignored. If field includes a comma, the whole field must be surrounded with double quotes. (1995-05-06)
tab-separated values         
TEXT FILE FORMAT
.tsv; Tab separated values; Tab delimited; Tab-delimited; Tabulator-separated values; .tab; Tsv; Tab-separated value
<file format> (TSV) A file format used as a portable representation of a database. Each line represents one entry or record; and in every line, each field is separated from the next by a tab character (HT). Compare CSV. (2001-03-16)
TSV         
TEXT FILE FORMAT
.tsv; Tab separated values; Tab delimited; Tab-delimited; Tabulator-separated values; .tab; Tsv; Tab-separated value

Wikipedia

Comma-separated values

A comma-separated values (CSV) file is a delimited text file that uses a comma to separate values. Each line of the file is a data record. Each record consists of one or more fields, separated by commas. The use of the comma as a field separator is the source of the name for this file format. A CSV file typically stores tabular data (numbers and text) in plain text, in which case each line will have the same number of fields.

The CSV file format is not fully standardized. Separating fields with commas is the foundation, but commas in the data or embedded line breaks have to be handled specially. Some implementations disallow such content while others surround the field with quotation marks, which yet again creates the need for escaping if quotation marks are present in the data.

The term "CSV" also denotes several closely-related delimiter-separated formats that use other field delimiters such as semicolons. These include tab-separated values and space-separated values. A delimiter guaranteed not to be part of the data greatly simplifies parsing.

Alternative delimiter-separated files are often given a ".csv" extension despite the use of a non-comma field separator. This loose terminology can cause problems in data exchange. Many applications that accept CSV files have options to select the delimiter character and the quotation character. Semicolons are often used instead of commas in many European locales in order to use the comma as the decimal separator and, possibly, the period as a decimal grouping character.